home *** CD-ROM | disk | FTP | other *** search
/ CDUTIL 13 / CDUTIL #13 Julio 1995.iso / windows / acadwin / support / viewslid.dcl < prev    next >
Encoding:
Text File  |  1995-02-08  |  2.8 KB  |  91 lines

  1. // Next available MSG number is     7 
  2. // MODULE_ID VIEWSLID_DCL_
  3. /* Next available MSG number is  24 */
  4.  
  5. //----------------------------------------------------------------------------
  6. //
  7. //   VIEWDLID.DCL   Version 1.0
  8. //
  9. //     Copyright (C) 1991, 1992, 1993, 1994 by Autodesk, Inc.
  10. //
  11. //     Permission to use, copy, modify, and distribute this software
  12. //     for any purpose and without fee is hereby granted, provided
  13. //     that the above copyright notice appears in all copies and
  14. //     that both that copyright notice and the limited warranty and
  15. //     restricted rights notice below appear in all supporting
  16. //     documentation.
  17. //
  18. //     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  19. //     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  20. //     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  21. //     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  22. //     UNINTERRUPTED OR ERROR FREE.
  23. //
  24. //     Use, duplication, or disclosure by the U.S. Government is subject to
  25. //     restrictions set forth in FAR 52.227-19 (Commercial Computer
  26. //     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  27. //     (Rights in Technical Data and Computer Software), as applicable.
  28. //
  29. //.     
  30. //   
  31. //----------------------------------------------------------------------------
  32. //
  33. //  Viewslid.dcl - For use with dlgtest.cc
  34. //   (Test Program for User Programmable Dialog Boxes)
  35. //
  36. //----------------------------------------------------------------------------
  37.  
  38. //dcl_settings : default_dcl_settings { audit_level = 3; }
  39.  
  40. viewslide : dialog {
  41.     label = "Mostrar rueda de colores";
  42.     : column {
  43.         : image {
  44.             key = "color_whl";
  45.             color = graphics_background;
  46.             aspect_ratio = 1.33;
  47.             height = 7;
  48.             width = 10;
  49.         }
  50.         spacer_1;
  51.         : row {
  52.             fixed_width = true;
  53.             alignment = centered;
  54.             ok_button;
  55.             : spacer { width = 2; }
  56.             : button {
  57.                 key = "subdlgtest";
  58.                 label = "Probar subdlg...";
  59.             }
  60.         }
  61.     }
  62. }
  63.  
  64. subdlg : dialog {
  65.     label = "Probar dißlogos anidados";
  66.     : column {
  67.         spacer_1;
  68.         : text {
  69.             label = "Buen resultado en los subdißlogos anidados";
  70.         }
  71.         spacer_1;
  72.         : toggle {
  73.             label = "Permitir terminaci≤n";
  74.             alignment = left;
  75.             key = "term_on_off";
  76.         }
  77.         spacer_1;
  78.         : row {
  79.             fixed_width = true;
  80.             alignment = centered;
  81.             ok_button;
  82.             : spacer { width = 2; }
  83.             : button {
  84.                 key = "terminate";
  85.                 label = "Term todo";
  86.             }    
  87.         }
  88.     }
  89.  
  90.